
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--    <meta name="viewport" content="width=1240,initial-scale=0.8,minimum-scale=0.8,maximum-scale=0.8,user-scalable=no">-->
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>智东西首页 - 智能产业媒体与创新服务平台</title>
    <meta name="keywords" content="AI芯片,人脸识别,物体识别,手势识别,计算机视觉,自然语言处理,语音识别,语音合成,NLP,神经网络,深度神经网络,深度学习,机器学习,CPU,GPU,TPU,智能音箱,智能产业,大数据,机器人,无人机,智慧零售,智能安防,智东西">
    <meta name="description" content="智东西是中国领先的智能产业媒体和创新服务平台。聚焦于以人工智能为核心的新技术驱动的创新创业和传统产业升级。自创立以来，智东西以“聚焦智能变革 服务产业升级”为愿景，已形成媒体、公开课以及产业活动三大产品业务体系，并构建了庞大的智能产业垂直社群。">
        <link rel="stylesheet" href="//oss.zhidx.com/static/themes/zhidxcom/css/base.css?a=1">
    <script type='text/javascript' src='//oss.zhidx.com/static/common/lib/jquery.min.js'></script>
    <script src="//oss.zhidx.com/static/themes/zhidxcom/js/base.js?a=1"></script>
    <link rel="stylesheet" href="//oss.zhidx.com/static/common/lib/layui/css/layui.css">

    <script src="//oss.zhidx.com/static/common/lib/layui/layui.js"></script>
    <script src="//oss.zhidx.com/static/common/lib/lazyload.min.js"></script>
    <style>
        .author-desc,.author-desp {
            text-align: justify !important;
        }
    </style>
    <script>
        //var ajaxurl = '//';
        var ajaxurl = '/wp-admin/admin-ajax.php';

        //启用延迟加载
        window.addEventListener('load', function() {
            lazyload()
        })
    </script>
    <script>
        var _hmt = _hmt || [];
        (function() {
            var hm = document.createElement("script");
            hm.src = "https://hm.baidu.com/hm.js?6a105aad5d4cd3c47e5745e226ca9ccc";
            var s = document.getElementsByTagName("script")[0];
            s.parentNode.insertBefore(hm, s);
        })();
    </script>
    <script>
        if (window.outerWidth < 1240) {
            var ratio = window.outerWidth / 1240
            document.querySelector('meta[name="viewport"]').setAttribute('content', [
                'width=1240',
                'initial-scale=' + ratio,
                'minimum-scale=' + ratio,
                'maximum-scale=' + ratio,
                'user-scalable=no'
            ].join(','))
//            console.log('viewport', )
        }
    </script>
</head>
<body>
    <div style="display:none" data-login></div>
    <link rel="stylesheet" href="//oss.zhidx.com/static/themes/zhidxcom/css/tips.css?a=1">
<!-- 登录 -->
<div class="my-layer login-layer" style="display: none;">
    <div class="qrcode-tips qrcode-login">
        <div class="close">
            <img src="//oss.zhidx.com/static/themes/zhidxcom/images/close-icon.png" alt="">
        </div>
        <div class="title">扫码关注智东西Pro服务号登录</div>
        <div class="qrcode-2">
            <img id="qrcode" src="//oss.zhidx.com/static/themes/zhidxcom/images/qrcode-fail.jpg" alt="">
        </div>
        <div class="desp">
            请使用微信扫描二维码
        </div>
    </div>
</div>

<div class="my-layer bind-phone-tips">
    <div class="info-tips bind-phone">
        <div class="close">
            <img src="//oss.zhidx.com/static/themes/zhidxcom/images/close-icon.png" alt="">
        </div>
        <div class="content">
            <div class="title">绑定手机号</div>
            <form class="form-list bind-phone-form">
                <div class="form-item">
                    <input type="text" name="phone" placeholder="请输入手机号码">
                </div>
                <div class="form-item">
                    <input type="text" class="code-input" name="code" placeholder="请输入验证码"><div class="get-code code-btn"  data-isnew="1">获取验证码</div>
                </div>
            </form>
            <div class="form-btn">确认绑定</div>
        </div>
    </div>
</div>
    <script !src="">
        function is_mobile() {
            return /Android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent);
        }

        function is_wechat() {
            return  navigator.userAgent.toLowerCase().indexOf('micromessenger') !== -1;
        }

        /**
         * pc端获取登录信息
         */
        function getPcLoginInfo(callback) {
            $.get('/api/index/login_info.php', function(res) {
                if (res.state === 1) {
                    $('.user-wrapper').html(res.result)
                    userOption()
                    callback && callback()
                }
            }, 'json');
        }

        var bindPhoneObj = {
            callback: null,
            fetchData: function(){
                var that = this;
                $.post('/api/index/bind_phone.php', $('.bind-phone-form').serialize(), function(res) {
                    $('.close').trigger('click');
                    myhandleResponse(res, function() {
                        that.callback && that.callback()
                    })
                }, 'json')
            }
        };

        function myhandleResponse(res, success, fail) {
            if (res.state === 1) {
                layer.msg(res.result, {icon: 1, time: 2000}, function () {
                    success && success()
                })
            } else {
                layer.msg(res.result, {icon: 2}, function() {
                    fail && fail();
                });
            }
        }

        function check_phone(callback) {
            $.get('/api/index/check_phone.php', function (res) {
                if (res.state ===  0) {
                    $('.bind-phone-tips').css('display', 'block');
                    bindPhoneObj.callback = callback;
                } else if (res.state === 1) {
                    callback && callback()
                }
            }, 'json');
        }

        function pc_login(callback) {
            layer.load(2);
            var img = new Image();
            img.src = '/api/index/generate_qrcode.php';
            img.onload = function() {
                layer.closeAll()
                $('.login-layer').css('display', 'block');
                $('.login-layer #qrcode').attr('src', img.src);
                timer = setInterval(function () {
                    $.get('/api/index/check_login.php', function (res) {
                        if (res.state === 1) {
                            if (timer) {
                                clearInterval(timer);
                                $('.close').trigger('click');
                            }
                            getPcLoginInfo(function() {
                                layer.msg(res.result, {
                                    icon :1,
                                    time: 2000
                                }, function() {
                                    check_phone(callback)
                                })
                            })
                        }
                    }, 'json')
                }, 3000)
            };
            img.onerror = function () {
                layer.closeAll();
                $('.login-layer').css('display', 'block');
            }
        }

        window.addEventListener('load', function() {
            (function($) {
                if (! is_mobile()) {
                    getPcLoginInfo();
                }
                if (sessionStorage.getItem('check_phone')) {

                    sessionStorage.setItem('check_phone', '');
                }


                if (!num) {
                    var num = 0;
                }
                var numTimer = null;
                if (num > 0) {
                    setNumTimer(num)
                }

                function setNumTimer(num) {
                    numTimer = setInterval(function() {
                        num --;
                        $('.code-btn').html(num + 's后再次发送')
                        if (num == 0) {
                            $('.code-btn').html('获取验证码')
                            clearInterval(numTimer)
                        }
                    }, 1000);
                }
                var timer = null;
                layui.use(['layer'], function() {
//获取验证码
                    $('.get-code').on('click', function() {
                        var is_new = $(this).data('isnew')
                        is_new = is_new ? 1 : 0;
                        if (num > 0) {
                            console.log('num: ', num)
                            return;
                        }
                        var phone = $('input[name="phone"]').val();
                        if (!phone) {
                            layer.msg('请输入您的手机号码', {icon: 2})
                            return;
                        }
                        if (! /^1[^1,2][0-9]{9}$/.test(phone)) {
                            layer.msg('请输入正确的手机号', {icon: 2});
                            return;
                        }
                        layer.load(2);
                        $.post('/api/index/get_code.php', {
                            phone: phone,
                            is_new: is_new,
                        }, function(res) {
                            layer.closeAll();
                            myhandleResponse(res, function() {
                                setNumTimer(60)
                            });
                        }, 'json')
                    });
                    $('.form-btn').click(function() {
                        bindPhoneObj.fetchData();
                    });

                    var layer = layui.layer;
                    $('body').on('click', '[data-login]', function () {
                        pc_login()
                    });
                    $('body').on('click', '[data-logout]', function() {
                        $.get('/api/index/logout.php', function (res) {
                            if (res.state === 1) {
                                getPcLoginInfo(function() {
                                    layer.msg(res.result, {
                                        icon :1,
                                        time: 2000
                                    })
                                })
                            }
                        }, 'json')
                    });
                    $('.close').on('click', function() {
                        $('.my-layer').css('display', 'none')
                        if (timer) {
                            clearInterval(timer)
                        }
                    })
                })
            })(jQuery)
        })
    </script>
<link rel="stylesheet" href="//oss.zhidx.com/static/themes/zhidxcom/css/nav-zhidx.css?a=1?a=4">
<script src="//oss.zhidx.com/static/ab/zhidxad.js?b=a1" async></script>
<style>
    #new-header .header-nav .content .nav-wrapper a {
        margin-right: 20px;
    }
</style>
<header id="new-header">
    <div class="header-top" style="min-width:1200px;">
        <div class="w1200 margin-auto content">
            <div class="top-option">
                <div class="item">
                    欢迎来智东西
                </div>
                <div class="item split">
                    <img src="//oss.zhidx.com/static/themes/zhidxcom/images/top-option-split.png">
                </div>
                <div class="user-wrapper">
                    <div class="item">登录</div>
                    <div class="item">免费注册</div>
                </div>
                <div class="item split">
                    <img src="//oss.zhidx.com/static/themes/zhidxcom/images/top-option-split.png">
                </div>
                <div class="item header-sub">
                    关注我们
                    <img src="//oss.zhidx.com/static/themes/zhidxcom/images/top-option-cursor.png" class="icon">
                    <div class="sub-content">
                        <div class="list w1200">
                            <div class="item">
                                <img src="//oss.zhidx.com/static/themes/zhidxcom/images/zdx-wechat.png" alt="">
                                <div class="name">智东西</div>
                            </div>
                            <div class="item">
                                <img src="//oss.zhidx.com/static/themes/zhidxcom/images/cdx-wechat.png" alt="">
                                <div class="name">车东西</div>
                            </div>
                            <div class="item">
                                <img src="//oss.zhidx.com/static/themes/zhidxcom/images/xindongxi-wechat.png?a=1" alt="">
                                <div class="name">芯东西</div>
                            </div>
                            <div class="item">
                                <img src="https://oss.zhidx.com/gtic/24/09/66e542403c06c-aiorang-wechat.jpg" alt="">
                                <div class="name">智猩猩</div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
            <div class="website-wrapper">
                <div class="item">
                    <a href="https://zhidx.com" target="_blank">智东西</a>
                </div>
                <div class="item">
                    <a href="https://chedongxi.com" target="_blank">车东西</a>
                </div>
                <div class="item">
                    <a href="https://zhidx.com/aichip001" target="_blank">芯东西</a>
                </div>
<!--                <div class="item split">-->
<!--                    <img src="--><!--/images/top-option-split.png">-->
<!--                </div>-->
                <div class="item split">
                    <a href="https://aiorang.com/" target="_blank">智猩猩</a>
                </div>
                <div class="item course" style="display: none;">
                    <a href="https://aiorang.com" target="_blank">
                        公开课
                        <img src="//oss.zhidx.com/static/themes/zhidxcom/images/top-option-cursor.png" class="icon">
                    </a>
                    <div class="options-wrapper">
                        <div class="course-options">
                            <div class="course-item border-left"><a href="https://aiorang.com/" target="_blank">智猩猩</a></div>
                            <div class="course-item">
                                <a href="javascript:;">公开课小程序</a>
                                <div class="mini-programs">
                                    <img src="https://oss.zhidx.com/gtic/20/08/5f2aa733d91fc-gh_4cff094b8cff_258.jpg" alt="">
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
                <div class="item">
                    <a href="https://gtic.zhidx.com/" target="_blank">线下大会</a>
                </div>
                <div class="item margin0">
                    <a href="http://aipfia.zhidx.com/2022/index.html" target="_blank">AI生产力创新奖</a>
                </div>
            </div>
        </div>
    </div>
    <div class="header-nav">
        <div class="w1200 margin-auto content">
            <a href="/" class="logo">
                <img src="//oss.zhidx.com/static/themes/zhidxcom/images/zhidx-logo.png" alt="">
            </a>
            <div class="nav-wrapper">
                                                        <a href="/news" target="_blank" class="">快讯</a>
                                            <a href="javascript:;"><span class="i"></span></a>
                                                                            <a href="/p/category/zhidongxi/topnews" target="_blank" class="">头条</a>
                                                                            <a href="/p/category/人工智能" target="_blank" class="">人工智能</a>
                                                                            <a href="https://zhidx.com/aichip001" target="_blank" class="">芯东西</a>
                                                                            <a href="/p/category/intelligent-home" target="_blank" class="">AIoT</a>
                                                                            <a href="/p/category/digital-new-capital-construction" target="_blank" class="">云与智慧城市</a>
                                                                            <a href="/p/category/机器人无人机" target="_blank" class="">机器人</a>
                                                                            <a href="/p/category/vr-ar" target="_blank" class="">VR/AR</a>
                                                                            <a href="https://zhidx.com/p/category/zhidongxi/mobiledevice" target="_blank" class="">手机通信</a>
                                                                                <a href="javascript:;"><span class="i"></span></a>
                                        <a href="https://huodong.zhidx.com" target="_blank" class="">活动</a>
                                                </div>
            <form class="search-wrapper" action="/" target="_self">
                <input type="text" name="s" placeholder="请输入搜索内容">
                <button class="search-btn">
                    <img src="//oss.zhidx.com/static/themes/zhidxcom/images/zhidx-search-icon.png">
                </button>
            </form>
        </div>
    </div>
</header>
<!--<a href="https://gtic.zhidx.com/2020/aichip/" target="_blank" style="display: block;height: 100px;width:100%; background: url(https://oss.zhidx.com/gtic/2020/gtic-2020.jpg?a=4) no-repeat center/1920px auto, #04121b;"></a>-->    <link rel="stylesheet" href="//oss.zhidx.com/static/themes/zhidxcom/css/index.css?b=1">
    <style>
        img {
            image-rendering: -moz-crisp-edges;
            image-rendering: -o-crisp-edges;
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
            -ms-interpolation-mode: nearest-neighbor;
        }

        .news-list-wrapper {
            height: 449px;
            overflow-y: auto;
            scrollbar-width: none;
        }

        .news-list-wrapper::-webkit-scrollbar {
            display: none; /* Chrome Safari */
        }
    </style>
    <style>
        body {
            /*filter: grayscale(1);*/
        }
    </style>
    <!--<base target="_blank" />-->
    <section id="main">
        <div id="top">
            <div id="top-left">
        <div class="top-img" name="zhidx">
        <ul class="top-img-list">
                                <li>
                        <a style="width:896px;height:388px;" href="https://zhidx.com/p/520500.html"
                           title="AI眼镜大决战已到？对话9位操盘手和专家真相：蛋糕分得心慌慌" target="_blank"><img class="lazyload" data-src="https://oss.zhidx.com/b43160661fa3a57291ad2cbffb7829d7/6940a100/uploads/2025/12/6938ed12f4093_6938ed12f0ece_6938ed12f0e92_%E6%9C%AA%E6%A0%87%E9%A2%98-1.png"></a>
                    </li>
                                        <li>
                        <a style="width:896px;height:388px;" href="https://zhidx.com/p/521333.html"
                           title="全民AI短剧时代来了！商汤Seko 2.0登场，分分钟手搓百级剧情，你做的AI短剧也能登上热榜" target="_blank"><img class="lazyload" data-src="https://oss.zhidx.com/4e43d1ff47d32d781b3a9ef689c8f204/6940a100/uploads/2025/12/693eb5435f062_693eb5435b7e7_693eb5435b7a2_ScreenShot_2025-12-14_210109_109-%E6%8B%B7%E8%B4%9D.png"></a>
                    </li>
                                        <li>
                        <a style="width:896px;height:388px;" href="https://zhidx.com/p/520774.html"
                           title="Mate 80卖爆背后，为何华为总能在行业“不可能之地”踩爆牙膏？" target="_blank"><img class="lazyload" data-src="https://oss.zhidx.com/d10dacf0f48307acdbbb23807c63cedb/6940a100/uploads/2025/12/693963be14d13_693963be11668_693963be1162b_69256623bffe5_69256623bc0bf_69256623bc08f_%E6%9C%AA%E6%A0%87%E9%A2%98-1.png"></a>
                    </li>
                                        <li>
                        <a style="width:896px;height:388px;" href="https://zhidx.com/p/520440.html"
                           title="余凯不仅要搞定智驾，还要带地平线定义物理世界的“新摩尔定律”" target="_blank"><img class="lazyload" data-src="https://oss.zhidx.com/3aca21f12c22607841daee48c3a97416/6940a100/uploads/2025/12/6938ab098709a_6938ab0983bac_6938ab0983b74_image2-%E6%8B%B7%E8%B4%9D.jpg"></a>
                    </li>
                            </ul>
        <ul class="top-img-ico-list">
            <li class="img-ico-select"></li>
            <li></li>
            <li></li>
            <li></li>
        </ul>
        <ul class="top-img-title-list">
                                <li><a href="https://zhidx.com/p/520500.html" title="AI眼镜大决战已到？对话9位操盘手和专家真相：蛋糕分得心慌慌"
                           target="_blank">AI眼镜大决战已到？对话9位操盘手和专家真相：蛋糕分得心慌慌</a></li>
                                        <li><a href="https://zhidx.com/p/521333.html" title="全民AI短剧时代来了！商汤Seko 2.0登场，分分钟手搓百级剧情，你做的AI短剧也能登上热榜"
                           target="_blank">全民AI短剧时代来了！商汤Seko 2.0登场，分分钟手搓百级剧情，你做的AI短剧也能登上热榜</a></li>
                                        <li><a href="https://zhidx.com/p/520774.html" title="Mate 80卖爆背后，为何华为总能在行业“不可能之地”踩爆牙膏？"
                           target="_blank">Mate 80卖爆背后，为何华为总能在行业“不可能之地”踩爆牙膏？</a></li>
                                        <li><a href="https://zhidx.com/p/520440.html" title="余凯不仅要搞定智驾，还要带地平线定义物理世界的“新摩尔定律”"
                           target="_blank">余凯不仅要搞定智驾，还要带地平线定义物理世界的“新摩尔定律”</a></li>
                            </ul>
    </div>
    <ul class="top-img-min">
                    <li>
                <a href="https://zhidx.com/p/520250.html" data-id="" title="机器人香港开启极限挑战，丢掉遥控器，硬刚全自主！"
                   target="_blank">
                    <img class="lazyload" data-src="https://oss.zhidx.com/9da721b5b31d76b25a7fde5216112cd4/6940a100/uploads/2025/12/6937cfa26300d_6937cfa25fbfc_6937cfa25fbb5_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20251209152633_100_166.png/w400">                    <div class="top-img-min-title">
                        <div>机器人香港开启极限挑战，丢掉遥控器，硬刚全自主！</div>
                    </div>
                </a>
            </li>
                        <li>
                <a href="https://zhidx.com/p/519930.html" data-id="" title="不止于炫技，普渡如何引领机器狗成为具身智能商业化最佳物种？"
                   target="_blank">
                    <img class="lazyload" data-src="https://oss.zhidx.com/3a358b7660803bb93eec1dd593644845/6940a100/uploads/2025/12/6936d0ee19c1d_6936d0ee16959_6936d0ee16928_%E5%B0%81%E9%9D%A2%E5%9B%BE.png/w400">                    <div class="top-img-min-title">
                        <div>不止于炫技，普渡如何引领机器狗成为具身智能商业化最佳物种？</div>
                    </div>
                </a>
            </li>
                        <li>
                <a href="https://zhidx.com/p/519531.html" data-id="" title="亚马逊Agent克服遗忘的“秘诀”，被中国团队掌握，让大模型遗忘率趋近于0"
                   target="_blank">
                    <img class="lazyload" data-src="https://oss.zhidx.com/1836b024ba49ed5e92533f20b02e31cf/6940a100/uploads/2025/12/69329aae9f0b2_69329aae9c45b_69329aae9c407_IMG_5142-2.jpg/w400">                    <div class="top-img-min-title">
                        <div>亚马逊Agent克服遗忘的“秘诀”，被中国团队掌握，让大模型遗...</div>
                    </div>
                </a>
            </li>
                </ul>
</div>            <div id="top-right">
                <div class="top-right-title">
                    <div class="news">
                        <a target="_blank" href="https://zhidx.com/news">快讯</a>
                    </div>
                    <!--                    <div class="subscribe">-->
                    <!--                        订阅快讯-->
                    <!--                    </div>-->
                </div>
                <div class="news-list-wrapper">
                    <ul class="news-list">
                    </ul>
                </div>
                <a target="_blank" class="news-other btn-hover" href="https://zhidx.com/news"
                   title="快讯 - 每天三分钟，读懂全球智能产业 - 智东西">
                    + 更多快讯
                </a>
            </div>
        </div>
        <style>

</style>
<link rel="stylesheet" href="//oss.zhidx.com/static/themes/zhidxcom/css/pc-gkk.css?a=4">
<div id="zdx-gkk">
    <div id="gkk-content">
        <div class="content-title" style="margin-bottom: 8px;"><a href="https://aiorang.com/" target="_blank" title="智猩猩 - 专注新兴技术应用案例讲解 - 智东西">智猩猩</a></div>
        <ul class="content">
                        <li>
                <a href="https://aiorang.com/company/detail/MGU5YTAyYmVmYWRkMWUzY2U5NDM=" target="_blank" class="gkk-header" style="display:block;background-image:url('https://oss.zhidx.com/ad211e6edd1e22b0152c3c9836b5b74e/6940a100/uploads/dw-uploads/%E4%B8%93%E5%9C%BA.png');">Arm公开课</a>
                <a class="gkk-cont" target="_blank" style="display:block;" href="https://aiorang.com/c/NTA5NGEzZjhjYTA1ZTAzOTlmNjM=">
                    <div class="gkk-banner-container">
                        <div class="gkk-banner gkk-banner1">
                                                            <img class="lazyload" data-src="https://oss.zhidx.com/gtic/25/10/68f4c22b8e161-841-475%E2%80%936.png/w1200" alt="">
                                                            <img class="lazyload" data-src="https://oss.zhidx.com/gtic/25/10/68f4c206c0e91-841-475%E2%80%937.png/w1200" alt="">
                                                            <img class="lazyload" data-src="https://oss.zhidx.com/gtic/25/12/693fce04b59db-841-475%E2%80%936.png/w1200" alt="">
                                                    </div>
                    </div>
                    <div class="gkk-course-name">Arm服务器大模型推理与云应用优化系列公开课｜第4期「在 Arm 服务器上实作 llama.cpp 分布式大模型推理全流程」</div>
                </a>
                <div class="gkk-footer">
                    <img src="//oss.zhidx.com/static/themes/zhidxcom/images/gkk-time.png" alt="">2025年12月17日 19点                </div>
            </li>
                        <li>
                <a href="https://aiorang.com/topic/detail/ODcwMjkyODE1MmUyOWE3ZWIxMTM=" target="_blank" class="gkk-header" style="display:block;background-image:url('https://oss.zhidx.com/2de8d382fa5fb13d5c6a61155a92507b/6940a100/uploads/dw-uploads/%E5%90%88%E8%BE%91.png');">超节点与智算集群系列</a>
                <a class="gkk-cont" target="_blank" style="display:block;" href="https://aiorang.com/c/OGNiYTUzZjk5NWNmNmJmOGI2YTM=">
                    <div class="gkk-banner-container">
                        <div class="gkk-banner ">
                                                            <img class="lazyload" data-src="https://oss.zhidx.com/gtic/25/12/693fcf85d89a2-841-475%E2%80%936.png/w1200" alt="">
                                                    </div>
                    </div>
                    <div class="gkk-course-name">超节点Scale-up互联需求及关键技术</div>
                </a>
                <div class="gkk-footer">
                    <img src="//oss.zhidx.com/static/themes/zhidxcom/images/gkk-time.png" alt="">2025年12月18日 19点                </div>
            </li>
                        <li>
                <a href="https://aiorang.com/topic/detail/ODcwMjkyODE1MmUyOWE3ZWIxMTM=" target="_blank" class="gkk-header" style="display:block;background-image:url('https://oss.zhidx.com/2de8d382fa5fb13d5c6a61155a92507b/6940a100/uploads/dw-uploads/%E5%90%88%E8%BE%91.png');">超节点与智算集群系列</a>
                <a class="gkk-cont" target="_blank" style="display:block;" href="https://aiorang.com/c/MmNlYmIzZjdjY2NkZjdkZWE4MDM=">
                    <div class="gkk-banner-container">
                        <div class="gkk-banner ">
                                                            <img class="lazyload" data-src="https://oss.zhidx.com/gtic/25/12/6937a8cb02e40-841-475%E2%80%9385.png/w1200" alt="">
                                                    </div>
                    </div>
                    <div class="gkk-course-name">DeepLink超大规模跨域混训实践</div>
                </a>
                <div class="gkk-footer">
                    <img src="//oss.zhidx.com/static/themes/zhidxcom/images/gkk-time.png" alt="">2025年12月11日 19点                </div>
            </li>
                        <li>
                <a href="https://aiorang.com/topic/detail/NjQxMjkyYzc1NTFlOGE3NzFiNDM=" target="_blank" class="gkk-header" style="display:block;background-image:url('https://oss.zhidx.com/2de8d382fa5fb13d5c6a61155a92507b/6940a100/uploads/dw-uploads/%E5%90%88%E8%BE%91.png');font-size: 18px;">智猩猩公开课大模型AI芯片系列</a>
                <a class="gkk-cont" target="_blank" style="display:block;" href="https://aiorang.com/c/NzI4NWQzZjY5NzhhMGU2YjdiYTM=">
                    <div class="gkk-banner-container">
                        <div class="gkk-banner ">
                                                            <img class="lazyload" data-src="https://oss.zhidx.com/gtic/25/12/69318d2794785-841-475%E2%80%9384.png/w1200" alt="">
                                                    </div>
                    </div>
                    <div class="gkk-course-name">从N:M稀疏网络到大模型的算法硬件高效协同设计</div>
                </a>
                <div class="gkk-footer">
                    <img src="//oss.zhidx.com/static/themes/zhidxcom/images/gkk-time.png" alt="">2025年12月09日 19点                </div>
            </li>
                    </ul>
    </div>
</div>
        <div id="new-info">
            <div id="info-right">
                <div class="info-right-item">
    <div class="info-right-item-list">
                    <a style="display:block;" target="_blank" class="iril-item" href="https://zhidx.com/lenovoAi" title="超级智能体:企业如何获得AI自由?">
                <div>
                    <img src="https://oss.zhidx.com/gtic/25/05/68343d1f0d306-la_4.jpg/w1200" class="info-right-img" alt="超级智能体:企业如何获得AI自由?">
                </div>
                                <div class="iril-title talgn-c">超级智能体:企业如何获得AI自由?</div>
                            </a>
                    <a style="display:block;" target="_blank" class="iril-item" href="https://zhidx.com/p/category/%e8%85%be%e8%ae%af%e6%95%b0%e5%ad%97%e5%ad%aa%e7%94%9f%e5%8d%81%e9%97%ae" >
                <div>
                    <img src="https://oss.zhidx.com/gtic/24/09/66d923dba1282-65683a1c82a8a-%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20231129191425.png/w1200" class="info-right-img" >
                </div>
                            </a>
        <!---->
<!--        <a href="http://nvidia.zhidx.com/" target="_blank" class="iril-item" style="display:block;" title="英伟达AI计算专区">-->
<!--            <img src="//oss.zhidx.com/uploads/dw-uploads/nvidia-banner.jpeg" class="info-right-img" alt="英伟达AI计算专区">-->
<!--            --><!--                <div class="iril-title">-->
<!--                    <center>英伟达AI计算专区</center>-->
<!--                </div>-->
<!--            --><!--        </a>-->

    </div>
</div>                <div class="info-right-item" id="activity-rec">
    <div class="info-right-item-top">
        <div class="irit-title"><a href="https://huodong.zhidx.com" target="_blank">活动推荐</a></div>
        <a href="https://huodong.zhidx.com" target="_blank" class="irit-other">更多</a>
    </div>
    <div class="info-right-item-bb"></div>
    <div class="info-right-item-list activity-list">
<!--        <div class="iril-item">-->
<!--            <div>-->
<!--                <img src="--><!--/images/test-img2.png" class="info-right-img" alt="">-->
<!--            </div>-->
<!--            <div class="iril-title">特斯拉中国工厂敲定独资落地上海临港</div>-->
<!--            <div class="iril-related">-->
<!--                <div class="iril-related-time">9月20-21日</div>-->
<!--                <div class="iril-related-addr">北京</div>-->
<!--            </div>-->
<!--        </div>-->
    </div>
</div>
<script type="text/template" id="activity-temp">
    <div class="iril-item ">
        <a style="display:block;" href="{{website}}" target="_blank">
        {{top}}
        <div class="iril-title">{{name}}</div>
        <div class="iril-related">
            <div class="iril-related-time">{{time}}</div>
            <div class="iril-related-addr">{{address}}</div>
        </div>
        </a>
    </div>
</script>
<script>
    var activityTemp = jQuery('#activity-temp').html()

    //活动
    jQuery.get('https://huodong.zhidx.com/index/zhidx', function(data) {
        if (data.state === 1) {
            if (! data.result || data.result.length === 0) {
                $('#activity-rec').css('display', 'none');
                return;
            }
            var list = Array.isArray(data.result) ? data.result :  [data.result];
            var htmlList = list.map(function (e) {
                var top = e.banner ? '<div class="info-right-img-wrap"><img src="'+e.banner+'" class="info-right-img" alt=""></div>' : '';
                return activityTemp.replace(/{{name}}/, e.name)
                    .replace(/{{time}}/, e.time)
                    .replace(/{{address}}/, e.address)
                    .replace(/{{top}}/, top)
                    .replace(/{{website}}/, e.website)
            }, 'json');
            jQuery('.activity-list').html(htmlList.join(''));
        }
    }, 'json')
</script>                <div class="info-right-item">
    <div class="info-right-item-top">
        <div class="irit-title"><a href="/p/category/vanguard">硬创先锋</a></div>
        <a href="/p/category/vanguard" class="irit-other">更多</a >
    </div>
    <div class="info-right-item-bb"></div>
    <div class="info-right-item-list">
        
        <div class="iril-item">
            <a href="https://zhidx.com/p/492046.html" title="高通前芯片工程师回国造手，浙江国资等扎堆押注，对话创始人｜硬创先锋" style="display:block;">
            <div class="info-right-img-wrap">
                <img class="info-right-img lazyload" data-src="https://oss.zhidx.com/327641d7709d8c4102fdb5f2bfd9e641/6940a100/uploads/2025/07/6877537884469_6877537881287_6877537881252_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20250716152325.jpg">            </div>
            <div class="iril-title" >高通前芯片工程师回国造手，浙江国资等扎堆押注，对话创始人｜硬创先锋</div>
            </a>
        </div>
        
    </div>
</div>                <div class="info-right-item">
    <div class="info-right-item-top">
        <div class="irit-title"><a href="/p/category/report">内参</a></div>
        <a href="/p/category/report" class="irit-other">更多</a >
    </div>
    <div class="info-right-item-bb"></div>
    <div class="info-right-item-list">
                        <div class="iril-item">
                    <a href="https://zhidx.com/p/263695.html" title="源于美国，兴于日韩，未来看中国！揭秘存储行业60年兴衰 | 智东西内参" style="display:block;">
                        <div class="info-right-img-wrap">
                        <img class="info-right-img lazyload" data-src="https://oss.zhidx.com/9970a0ffc28fa879b371eac819b5e104/6940a100/uploads/2021/04/606afc33e0173_606afc33dd096_606afc33dd054_770x400_%E5%89%AF%E6%9C%AC.png">                        </div>
                        <div class="iril-title" >源于美国，兴于日韩，未来看中国！揭秘存储行业60年兴衰 | 智东西内参</div>
                    </a>
                </div>
                    </div>
</div>                <div class="info-right-item">
    <div class="info-right-item-list">
                <a style="display:block;" class="iril-item" href="https://zhidx.com/p/category/series-article/aichip" title="AI芯片系列报道">
            <div>
                <img data-src="https://oss.zhidx.com/baab2cce6b45c085521f3081e78815dc/6940a100/uploads/dw-uploads/zhinengxinpian.jpeg" class="info-right-img lazyload" alt="AI芯片系列报道">
            </div>
            <div class="iril-title talgn-c">AI芯片系列报道</div>
        </a>
                <a style="display:block;" class="iril-item" href="https://zhidx.com/p/category/chedongxi/autonomous-driving" title="自动驾驶 - 智东西自动驾驶系列报道">
            <div>
                <img data-src="https://oss.zhidx.com/d9d8ccdd81445c124f25827d0334d513/6940a100/uploads/2018/11/%E8%87%AA%E5%8A%A8%E9%A9%BE%E9%A9%B6.jpg" class="info-right-img lazyload" alt="自动驾驶 - 智东西自动驾驶系列报道">
            </div>
            <div class="iril-title talgn-c">自动驾驶 - 智东西自动驾驶系列报道</div>
        </a>
            </div>
</div>                <script src="//oss.zhidx.com/static/themes/zhidxcom/js/tagcloud.js"></script>
<div class="info-right-item">
    <div class="info-right-item-top">
        <div class="irit-title">标签</div>
        <a href="/p/category/tag_list" class="irit-other">更多</a >
    </div>
    <div class="info-right-item-bb"></div>
    <div class="info-right-tag">
    <a href="https://zhidx.com/p/tag/%E5%A4%A7%E4%BC%97" class="tag3">大众</a><a href="https://zhidx.com/p/tag/%E7%99%BE%E5%BA%A6" class="tag3">百度</a><a href="https://zhidx.com/p/tag/%E9%AB%98%E9%80%9A" class="tag2">高通</a><a href="https://zhidx.com/p/tag/%E4%B8%89%E6%98%9F" class="tag3">三星</a><a href="https://zhidx.com/p/tag/360" class="tag3">360</a><a href="https://zhidx.com/p/tag/%E9%80%9A%E7%94%A8" class="tag3">通用</a><a href="https://zhidx.com/p/tag/%E6%99%BA%E4%B8%9C%E8%A5%BF" class="tag3">智东西</a><a href="https://zhidx.com/p/tag/iPhone" class="tag3">iPhone</a><a href="https://zhidx.com/p/tag/%E5%B0%8F%E7%B1%B3" class="tag3">小米</a><a href="https://zhidx.com/p/tag/5G" class="tag3">5G</a><a href="https://zhidx.com/p/tag/%E5%BE%AE%E8%BD%AF" class="tag3">微软</a><a href="https://zhidx.com/p/tag/%E8%8B%B1%E7%89%B9%E5%B0%94" class="tag2">英特尔</a><a href="https://zhidx.com/p/tag/%E8%85%BE%E8%AE%AF" class="tag2">腾讯</a><a href="https://zhidx.com/p/tag/%E8%8B%B9%E6%9E%9C" class="tag1">苹果</a><a href="https://zhidx.com/p/tag/IDx" class="tag1">IDx</a><a href="https://zhidx.com/p/tag/%E5%8D%8E%E4%B8%BA" class="tag3">华为</a><a href="https://zhidx.com/p/tag/%E8%B0%B7%E6%AD%8C" class="tag3">谷歌</a>    </div>
</div>
<script>
    (function() {
        function randsort(num) {
            return Math.random() > 0.5 ? 1 : -1;
        }

        function rand(num) {
            return Math.floor(Math.random() * (num + 1));
        }

        var indexList = [];
        var objList = document.querySelectorAll('.info-right-tag a');
        var length = document.querySelectorAll('.info-right-tag a').length;
        for (var i = 0; i < length; i++) {
            indexList.push(i)
        }
        indexList.sort(rand);
        var w = document.querySelector('.info-right-tag').offsetWidth;
        indexList.forEach(function (e) {
            objList[e].style.cssText = [
                'margin:' + [
                    rand(10) + 'px',
                    rand(10) + 'px',
                    rand(10) + 'px',
                    rand(10) + 'px'
                ].join(' ') + ';'
            ].join('')
        });
    })();
</script>            </div>
            <div id="info-left">
                <div class="content-title">
                    <span>最新资讯</span>
                </div>
                <ul class="info-list">
                                    </ul>
                <div class="info-left-other load-over">
                    加载更多...
                </div>
            </div>
        </div>
        <div id="gtic">
            <div id="gtic-content">
                <div class="content-title">
                    <a href="https://zhidx.com/gtic">线下大会</a>
                </div>
                <ul class="gtic-list">
                                        <li class="" style="width:285px;height: 161px;">
                        <img data-src="https://oss.zhidx.com/gtic/25/10/68ee0946ae364-AI%E8%8A%AF%E7%89%87%E5%B3%B0%E4%BC%9A1340-756.png/w800" class="gtic-img lazyload" alt="2025全球AI芯片峰会" style="height: 100%">
                        <a class="gtic-info"  href="https://gacs.zhidx.com/2025/" title="2025全球AI芯片峰会">
                            <div class="gitc-info-relation" >
                                <div class="gir-time">2025-09-17</div>
                                <div class="gir-addr">
                                    上海                                </div>
                            </div>
                            <div class="gtic-info-title">
                                2025全球AI芯片峰会                            </div>
                        </a>
                    </li>
                                        <li class="" style="width:285px;height: 161px;">
                        <img data-src="https://oss.zhidx.com/gtic/25/07/686b9b7148074-%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20250707180029.png/w800" class="gtic-img lazyload" alt="2025中国AI算力大会" style="height: 100%">
                        <a class="gtic-info"  href="https://gtic.zhidx.com/2025/AIComputationalPower/" title="2025中国AI算力大会">
                            <div class="gitc-info-relation" >
                                <div class="gir-time">2025-06-26</div>
                                <div class="gir-addr">
                                    北京                                </div>
                            </div>
                            <div class="gtic-info-title">
                                2025中国AI算力大会                            </div>
                        </a>
                    </li>
                                        <li class="" style="width:285px;height: 161px;">
                        <img data-src="https://oss.zhidx.com/gtic/25/05/682b0c9ce4efc-%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20250519184849.png/w800" class="gtic-img lazyload" alt="2025中国汽车智能化创新峰会" style="height: 100%">
                        <a class="gtic-info"  href="https://gtic.zhidx.com/2025/AutoIntelligence/" title="2025中国汽车智能化创新峰会">
                            <div class="gitc-info-relation" >
                                <div class="gir-time">2025-04-26</div>
                                <div class="gir-addr">
                                    上海                                </div>
                            </div>
                            <div class="gtic-info-title">
                                2025中国汽车智能化创新峰会                            </div>
                        </a>
                    </li>
                                        <li class="" style="width:285px;height: 161px;">
                        <img data-src="https://oss.zhidx.com/gtic/25/04/67f7aabf0da4f-%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20250410192513.png/w800" class="gtic-img lazyload" alt="2025中国生成式AI大会（北京站）" style="height: 100%">
                        <a class="gtic-info"  href="https://genaicon.zhidx.com/2025beijing/" title="2025中国生成式AI大会（北京站）">
                            <div class="gitc-info-relation" >
                                <div class="gir-time">2025-04-02</div>
                                <div class="gir-addr">
                                    北京                                </div>
                            </div>
                            <div class="gtic-info-title">
                                2025中国生成式AI大会（北京站）                            </div>
                        </a>
                    </li>
                                    </ul>
            </div>
        </div>
    </section>
<link rel="stylesheet" href="//oss.zhidx.com/static/themes/zhidxcom/css/sign-up.css">
<div class="mask">
    <div class="qrcode">
        <div class="qrcode-img">
            <img src="//oss.zhidx.com/static/themes/zhidxcom/images/dongdong-qrcode.png" alt="">
        </div>
        <div class="qrcode-title">扫描上面的二维码，添加智猩猩</div>
        <div class="qrcode-title">联络员报名</div>
        <div class="qrcode-desc">添加好友时请备注：姓名-公司-职位或者姓名-学校-专业，因报名人数过多，优先通过备注者。</div>
        <img src="//oss.zhidx.com/static/themes/zhidxcom/images/del-mask.png" alt="" class="del-mask">
    </div>
</div>
<div class="mask-1">
    <div class="qrcode-1">
        <div class="qrcode-img">
            <img src="//oss.zhidx.com/static/themes/zhidxcom/images/dongdong-qrcode.png" alt="">
        </div>
        <div class="qrcode-title">扫码进入智猩猩讲解平台,</div>
        <div class="qrcode-title">直接在手机端听本期课程</div>
        <div class="qrcode-desc">如有问题，请添加工作人员微信进行咨询：yzjzaizai</div>
        <img src="//oss.zhidx.com/static/themes/zhidxcom/images/del-mask.png" alt="" class="del-mask">
    </div>
</div>
<script src="//oss.zhidx.com/static/themes/zhidxcom/js/sign-up.js"></script>    <script type="text/html" id="news-list-item-temp">
        <li>
            <div class="info-list-img">
                <a href="{{link}}" target="_blank" title="{{title}}">{{pic}}</a>
            </div>
            <div class="info-left-content">
                <div class="info-left-title">
                    <a href="{{link}}" target="_blank" title="{{title}}">{{title}}</a>
                </div>
                <div class="info-left-desc">
                    {{desc}}
                </div>
                <div class="info-left-related">
                    <div class="ilr-author">
                        <div class="ilr-author-img">
                            {{author_pic}}
                        </div>
                        <div class="ilr-author-name">{{author_name}}</div>
                    </div>
                    <div class="ilr-time">
                        {{publish_time}}
                    </div>
                    <div class="ilr-comment">
                        <a href="{{link}}#comments" target="_blank" title="{{title}}">评论</a>
                    </div>
                </div>
            </div>
        </li>    </script>
    <script id="news-tmp" type="text/html">
        <li>
            <a target="_blank" class="news-title" href="https://zhidx.com/news/{{id}}.html"
               title="{{main_title}}">{{main_title}}</a>
            <div class="news-time">{{publish_time}}</div>
        </li>
    </script>
    <script src="//oss.zhidx.com/static/themes/zhidxcom/js/category.js?a"></script>
    <script>
        jQuery('.gkk-li').on('mouseover', function () {
            jQuery(this).find('.gkk-register').css('display', 'block');
        });
        jQuery('.gkk-li').on('mouseout', function () {
            jQuery(this).find('.gkk-register').css('display', 'none');
        });
        // var list = document.querySelectorAll('.gtic-list li');
        // for (var i = 0; i < list.length; i++) {
        //     var e = list[i];
        //     e.onmouseover = function() {
        //         jQuery('.gtic-list li').removeClass('nanme')
        //         e.className = 'gtic-list-item';
        //     }
        //     e.onmouseout = function() {
        //         for (var j = 0; j < list.length; j ++) {
        //             list[j].classname = '';
        //         }
        //     }
        // }
        (function ($) {
            $('.gtic-list').on('mouseover', 'li', function (e) {
                e.stopPropagation();
                // $('.gtic-list li').removeClass('gtic-list-item');
                // $(this).addClass('gtic-list-item');
                return false
            })
            $('.gtic-list li').on('movseout', function () {
                console.log('out')
            })
        })(jQuery)


        selectNav('index');

        window.onload = function () {
            var news = new newsData();
            news.fetchData();
        }

    </script>
    <script src="//oss.zhidx.com/static/themes/zhidxcom/js/index.js?a=1"></script>

<link rel="stylesheet" href="//oss.zhidx.com/static/themes/zhidxcom/css/footer.css">
<footer id="footer">
    <ul id="footer-info">
        <li class="footer-realize">
            <div class="footer-title">欢迎来撩</div>
            <ul class="content">
                <li>
                    <a href="https://zhidx.com/about" target="_blank">关于我们</a>
                </li>
                                    <li>
                        <a href="javascript:;">加入我们</a>
                        <div class="show-wrapper">
                            <div class="show">
                                                                    <div class="wechat-qrcode">
                                        <img src="https://oss.zhidx.com/gtic/20/08/5f29622a64c0d-1000.jpg" alt="">
                                    </div>
                                                                <div class="desp">
                                    扫码加我直接扔简历                                </div>
                            </div>
                        </div>
                    </li>
                                    <li>
                        <a href="javascript:;">寻求报道</a>
                        <div class="show-wrapper">
                            <div class="show">
                                                                    <div class="info">
                                        邮件地址：news@zhidx.com                                    </div>
                                                                <div class="desp">
                                    快把您的需求发给我                                </div>
                            </div>
                        </div>
                    </li>
                                    <li>
                        <a href="javascript:;">商务合作</a>
                        <div class="show-wrapper">
                            <div class="show">
                                                                    <div class="wechat-qrcode">
                                        <img src="https://oss.zhidx.com/gtic/24/07/66861d9ecf1e7-20240704115545.png/w1200" alt="">
                                    </div>
                                                                <div class="desp">
                                    扫码加我直接开聊                                </div>
                            </div>
                        </div>
                    </li>
                                    <li>
                        <a href="javascript:;">会议咨询</a>
                        <div class="show-wrapper">
                            <div class="show">
                                                                    <div class="wechat-qrcode">
                                        <img src="https://oss.zhidx.com/gtic/24/10/671891a7881a9-%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20241023140311.jpg/w1200" alt="">
                                    </div>
                                                                <div class="desp">
                                                                    </div>
                            </div>
                        </div>
                    </li>
                                    <li>
                        <a href="javascript:;">媒体合作</a>
                        <div class="show-wrapper">
                            <div class="show">
                                                                    <div class="wechat-qrcode">
                                        <img src="https://oss.zhidx.com/gtic/21/07/60fada53ccc15-WechatIMG316.jpeg/w1200" alt="">
                                    </div>
                                                                <div class="desp">
                                    扫码加我直接开聊                                </div>
                            </div>
                        </div>
                    </li>
                            </ul>
        </li>
        <li class="footer-wechat">
            <div class="footer-title">公众号</div>
            <ul>
                <li>
                    <img src="//oss.zhidx.com/static/themes/zhidxcom/images/zdx-wechat.png" class="footer-wechat-img" alt="智东西公众号">
                    <div class="footer-wechat-title">智东西</div>
                </li>
                <li>
                    <img src="//oss.zhidx.com/static/themes/zhidxcom/images/cdx-wechat.png" class="footer-wechat-img" alt="车东西公众号">
                    <div class="footer-wechat-title">车东西</div>
                </li>
                <li>
                    <img src="//oss.zhidx.com/static/themes/zhidxcom/images/xindongxi-wechat.png" class="footer-wechat-img" alt="智猩猩">
                    <div class="footer-wechat-title">芯东西</div>
                </li>
                <li>
                    <img src="https://oss.zhidx.com/gtic/24/09/66e542403c06c-aiorang-wechat.jpg" class="footer-wechat-img" alt="智猩猩">
                    <div class="footer-wechat-title">智猩猩</div>
                </li>
            </ul>
        </li>
    </ul>
            <div id="friend-link">
            <div class="footer-title">友情链接</div>
                        <ul>
                <li ><a href="http://www.jiguo.com/">极果</a></li><li ><a href="http://tech.ifeng.com/">凤凰科技</a></li><li ><a href="http://it.sohu.com/">搜狐科技</a></li><li ><a href="http://tech.ifeng.com/product/">凤凰数码</a></li><li ><a href="http://www.ikanchai.com/">砍柴网</a></li><li ><a href="http://www.shejipi.com/">设计癖</a></li><li ><a href="http://www.im2maker.com/">镁客网</a></li><li ><a href="http://www.dingkeji.com/">钉科技</a></li><li ><a href="http://www.mydrivers.com/">快科技</a></li><li ><a href="http://www.c114.com.cn/">C114通信网</a></li><li ><a href="http://www.iheima.com">i黑马</a></li><li ><a href="http://www.chuangyejia.com/">创业家</a></li><li ><a href="http://www.pchome.net">PChome</a></li><li ><a href="http://phone.cnmo.com/">手机中国</a></li><li ><a href="http://nvidia.zhidx.com/">NVIDIA AI 计算专区</a></li><li ><a href="https://www.zealer.com/">ZEALER</a></li><li ><a href="http://www.citreport.com/">科技快报</a></li><li ><a href="http://zhidx.com">智东西</a></li><li ><a href="https://www.dfrobot.com.cn">DFRobot人工智能</a></li><li ><a href="http://chedongxi.com">车东西</a></li><li ><a href="http://aiorang.com/">智猩猩</a></li><li ><a href="https://aijishu.com/">极术社区</a></li><li ><a href="http://zhidx.com/about#cooperation">更多 &gt;</a></li>            </ul>
        </div>
        <div id="colophon">
                <div>智东西 版权所有<a href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=11010802034975" style="color: #999;"><img src="https://oss.zhidx.com/2a1fbbb58f46918d115e55f4cdbfd53e/6940a100/uploads/2021/06/60c9b7290ece3_60c9b7290bfe3_60c9b7290bfb4_beian.png">京公网安备 11010802034975号</a> <a href="http://beian.miit.gov.cn/?spm=a2c4g.11186623.7y9jhqsfz.110.4f6d7243Z9KLvk" style="color: #999;" target="_blank">京ICP备16059766-1号</a> Copyright ©2014-2025 zhidx.com. All Rights Reserved</div>
        <div>北京市海淀区学清路10号院1号楼学清嘉创大厦A座</div>
    </div>
</footer>
<script src="https://oss.zhidx.com/static/common/lib/feedback.js?b=2"></script>
</body>
<script>
    var navTimer;
    jQuery(".zixun").each(function(i, e) {
        e.onmouseover = function() {
            if (this.navTimer) {
                clearTimeout(this.navTimer);
            }
            document.querySelectorAll('.zixun').forEach(function(item) {
                item.querySelector('.zixun-show').style.display = 'none';
                item.querySelector('a').className = '';
                item.style.cssText = '';
            });
            this.style.cssText = " height: 80px;border: none;background: rgba(235, 235, 235, .85) !important;";
            this.querySelector('.zixun-show').style.display = 'inline-block';
            this.querySelector('.zixun>a').className = 'zixun-select';
        }
    })
    jQuery(".zixun").each(function(i, e) {
        e.onmouseout = function() {
            var that = this;
            this.navTimer = setTimeout(function() {
                that.querySelector('.zixun-show').style.display = 'none';
                that.querySelector('a').className = '';
                that.style.cssText = '';
            }, 300);
        }
    });
    layui.use(['layer'], function() {
        var layer = layui.layer
        jQuery('.sw-coop').click(function() {
            var img = new Image();
                        img.src = 'https://oss.zhidx.com/a00656c930f02980af8045f3aa2cbb1b/6940a100/uploads/dw-uploads/sw-coop-img.jpeg';
            img.style = 'width:400px;height:auto;'
            img.onload = function() {
                //商务合作
                layer.open({
                    type: 1,
                    title: false,
                    closeBtn: false,
                    shadeClose: true,
                    area: ['auto'],
                    content: img.outerHTML
                })
            }
        })
    })
</script>

</html>